home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 24 / MacFormat n. 24 (Spain) / MacFormat 24.bin / Demos / Jungle Activated! / JungleActivated Demo / jung DEMO d / 00142_Video Player.ls < prev    next >
Encoding:
Text File  |  1996-10-14  |  500 b   |  21 lines

  1. on enterFrame
  2.   if the movieTime of sprite 2 > 0 then
  3.     sound fadeOut 1, 120
  4.     set the volume of sound 1 to 0
  5.     sound fadeOut 2, 120
  6.     set the volume of sound 2 to 0
  7.     sound stop 2
  8.   end if
  9. end
  10.  
  11. on exitFrame
  12.   global gBackgroundVolume, gWhereFrom, gMovieTime, gMoviePause
  13.   go(the frame)
  14.   if the movieTime of sprite 2 = the stopTime of sprite 2 then
  15.     set the volume of sound 2 to gBackgroundVolume
  16.     set the visible of sprite 29 to 0
  17.     updateStage()
  18.     go(gWhereFrom)
  19.   end if
  20. end
  21.